home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- BorderStyle = 4 'Fixed ToolWindow
- ClientHeight = 1395
- ClientLeft = 7365
- ClientTop = 6120
- ClientWidth = 1920
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "frmMain.frx":0000
- ScaleHeight = 1395
- ScaleWidth = 1920
- ShowInTaskbar = 0 'False
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Click()
- 'align the bubble form to the assistant-like form
- asBubbleSample.Top = frmMain.Top - asBubbleSample.Height + 200
- asBubbleSample.Left = frmMain.Left
- asBubbleSample.Show
- End Sub
- Private Sub Form_Load()
- Me.Left = (Screen.Width - Me.Width) / 2
- Me.Top = (Screen.Height - Me.Height) / 2
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- Unload asBubbleSample
- End Sub
-